home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / C / Applications / Moscow ML 1.42 / e_SML / errortest.sml < prev    next >
Encoding:
Text File  |  1996-07-18  |  101 b   |  7 lines  |  [TEXT/Moml]

  1. fun foo c =
  2.   case c of
  3.     #"\r" => #"\n"
  4.   | #"\n" => #"\r"
  5.   | #"\b" => #"\t"
  6.   | #"\t" => #"\b"
  7. ;